/* Global Colors and Variables */
:root {
    --primary-color: #FF4D4D;
    --secondary-color: #2A2A2A;
    --accent-color: #FFD700;
    --text-dark: #333;
    --text-light: #fff;
  }
  
  /* Base Typography & Layout Reset */
  html,
  body {
    margin: 0;
    padding: 0;
    /* Optionally hide any tiny leftover overflow:
       overflow-x: hidden;
    */
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: #f5f5f5;
  }
  
  p {
    margin-bottom: 1em;
    padding: 0;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Container for page content */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Hide toggleable sections/modals by default */
  .review-details,
  .faq-answer,
  .modal {
    display: none;
  }
  
  /* Modals */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
  }
  
  .close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s ease;
  }
  
  .close-modal:hover {
    color: var(--primary-color);
  }
  
  /* Make the entire header sticky */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  /* .sticky-nav just for styling, not sticky */
  header .sticky-nav {
    background: linear-gradient(135deg, var(--secondary-color), #1a1a1a);
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    padding: 15px 0;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  .logo i {
    color: var(--primary-color);
    margin-right: 10px;
  }
  
  /* Navigation (Desktop) */
  .desktop-nav {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensure no unexpected overflow */
  }
  
  .desktop-nav li {
    display: block;
  }
  
  .desktop-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 10px;
    transition: color 0.3s ease;
  }
  
  .desktop-nav a:hover {
    color: var(--accent-color);
  }
  
  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Hero Section */
  #hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }
  
  .hero-content {
    padding: 150px 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
  }
  
  /* Full-Width Top Choice Banner */
  #top-choice-banner {
    width: 100%;
    margin: 0 auto;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 40px 0;
    position: relative;
  }
  
  #top-choice-banner .banner-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* ensures children are horizontally centered */
    padding: 0 20px;
  }
  
  /* Force the title to center */
  .banner-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    margin: 0 auto; /* kill any leftover side margins */
    width: 100%;    /* force full width so flex alignment doesn't shrink it */
  }
  
  .game-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .game-banner-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid var(--primary-color);
  }
  
  .game-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .game-name {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .game-score {
    font-size: 1rem;
    margin: 0;
  }
  
  /* Simple text section styling */
  .text-section {
    background: none;
    text-align: left;
    color: var(--text-dark);
    font-size: 16px;
  }
  
  .text-section .text-content {
    width: 100%;
    margin: 0 auto;
  }
  
  .text-section p {
    line-height: 1.6;
    margin: 0;
  }
  
  /* GAME-CARDS in a horizontal “chip” row */
  .game-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .game-card {
    display: flex;              /* horizontal layout */
    align-items: center;        /* vertically center items */
    background: #fff;           
    border-radius: 30px;        
    margin-bottom: 16px;        
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;           
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 16px;              
  }
  
  .game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .game-card__image {
    flex-shrink: 0;
    margin-right: 16px;
  }
  
  .game-card__image img {
    width: 100px;
    height: 100px;
    border-radius: 50%; 
    object-fit: cover;
  }
  
  .game-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .game-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .game-score {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
  }
  
  .game-about {
    margin: 0;
    font-size: 0.85rem;
    font-style: italic;
    color: #888;
  }
  
  .game-description {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: #444;
  }
  
  .game-card__cta {
    margin-left: auto; 
  }
  
  /* Our reusable “Play” button style */
  .play-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .play-btn:hover {
    background: #ff1f1f;
  }
  
  /* Stack each game vertically on smaller screens */
  @media (max-width: 768px) {
    .game-card {
      flex-direction: column; 
      text-align: center;
      border-radius: 20px;
    }
  
    .game-card__image {
      margin-right: 0;
      margin-bottom: 8px;
    }
  
    .game-card__cta {
      margin-left: 0;
      margin-top: 8px;
    }
  }
  
  /* ----------- NEW STYLES FOR ARROW TOGGLE + TABLE DETAILS ----------- */
  
  /* Make the .review-item’s title and arrow spaced. */
  .review-item h3 {
    display: flex;
    align-items: center;
    justify-content: space-between; /* name on left, arrow on right */
    cursor: pointer;               /* let user know it's clickable */
  }
  
  /* The arrow icon (Font Awesome) that replaces +/– */
  .toggle-icon i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  /* Rotate arrow if toggled open (JS adds .rotate-up) */
  .toggle-icon i.rotate-up {
    transform: rotate(180deg);
  }
  
  /* .review-details is hidden by default (already done above),
     so we just add some extra margin when visible */
  .review-details {
    margin-top: 10px; /* space above the expanded section */
  }
  
  /* Basic 2-column table for game details in the expanded view */
  .game-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px; 
  }
  
  .game-info-table th {
    text-align: left;
    width: 40%; 
    font-weight: bold;
    padding: 6px 4px;
    background: #f5f5f5;
  }
  
  .game-info-table td {
    width: 60%;
    padding: 6px 4px;
    background: #fff;
  }
  
  /* Center the “Play Now” button below the table */
  .play-now-center {
    text-align: center;
  }
  
  /* ------------------------------------------------------------------- */
  
  /* Comparison Table */
  .comparison-table {
    margin-top: 30px;
  }
  
  .comparison-table h3 {
    margin-bottom: 15px;
  }
  
  .comparison-table table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px;
    text-align: left;
  }
  
  .comparison-table th {
    background: var(--secondary-color);
    color: white;
  }
  
  .comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
  }
  
  /* Testimonials */
  .testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
  }
  
  .testimonial::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 2rem;
  }
  
  /* FAQ */
  .faq-container {
    margin-top: 40px;
  }
  
  .faq-item {
    margin-bottom: 20px;
  }
  
  .faq-question {
    cursor: pointer;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    transition: background 0.3s ease;
    position: relative;
    font-weight: bold;
  }
  
  .faq-question:hover {
    background: #f8f9fa;
  }
  
  .faq-question::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  
  .faq-question.active::after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  .faq-answer {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
    margin-top: 5px;
  }
  
  /* Footer */
  footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 20px 0;
    text-align: center;
  }
  
  footer p {
    margin: 10px 0;
  }
  
  footer .footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 5px;
    font-size: 0.9rem;
  }
  
  footer .footer-links a:hover {
    text-decoration: underline;
  }
  
  .trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
  }
  
  /* Default (desktop) constraints */
  .trust-badge {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .trust-badge:hover {
    opacity: 1;
  }
  
  /* On tablets and smaller screens, make them a bit smaller */
  @media (max-width: 768px) {
    .trust-badge {
      max-width: 100px;
      max-height: 100px;
    }
  }
  
  /* On very small (portrait) phones, make them even smaller */
  @media (max-width: 480px) {
    .trust-badge {
      max-width: 80px;
      max-height: 80px;
    }
  }
  
  
  /* RESPONSIVE ADJUSTMENTS */
  
  /* Tablets */
  @media (max-width: 1024px) {
    .header-content,
    .container {
      padding: 0 15px;
    }
  
    .hero-content {
      padding: 120px 15px;
    }
  
    .hero-content h1 {
      font-size: 3rem;
    }
  
    .desktop-nav a {
      font-size: 0.95rem;
      padding: 5px 8px;
    }
  }
  
  /* Mobile (Landscape) */
  @media (max-width: 768px) {
    header {
      max-width: 100%;
      box-sizing: border-box;
    }
    header .sticky-nav {
      box-sizing: border-box;
      padding-left: 15px;
      padding-right: 15px;
    }
  
    .header-content {
      max-width: 100%;
      box-sizing: border-box;
      padding-left: 0;
      padding-right: 0;
    }
  
    .desktop-nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: var(--secondary-color);
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease-out;
      z-index: 999;
    }
  
    .desktop-nav.nav-open {
      display: block;
      max-height: 500px;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  
    .header-content {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  
    .logo {
      margin-bottom: 0;
    }
  
    .desktop-nav a {
      display: block;
      padding: 15px 20px;
    }
  }
  
  /* Mobile (Portrait) */
  @media (max-width: 480px) {
    header {
      max-width: 100%;
      box-sizing: border-box;
    }
    header .sticky-nav {
      box-sizing: border-box;
      padding-left: 10px;
      padding-right: 10px;
    }
  
    .header-content {
      max-width: 100%;
      box-sizing: border-box;
      padding-left: 0;
      padding-right: 0;
    }
  
    body {
      font-size: 14px;
    }
  
    .hero-content {
      padding: 80px 10px;
    }
  
    .hero-content h1 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
  
    .cta-btn,
    .play-btn {
      padding: 12px 25px;
      font-size: 0.85rem;
    }
  
    .faq-question,
    .faq-answer,
    .review-item {
      padding: 12px;
      font-size: 0.9rem;
    }
  
    footer {
      padding: 15px 0;
    }
  
    .banner-title {
      font-size: 1.75rem;
    }
  
    .game-name {
      font-size: 1.3rem;
    }
  
    .game-banner-img {
      width: 150px;
      height: 150px;
    }
  }

  /* ========== HOW WE REVIEW SECTION ========== */

/* The outer section with the light gradient background */
.how-we-review-section {
    /* Subtle gradient background for the entire section */
    padding: 60px 20px; 
  }
  
  /* The wrapper no longer has a white card background or shadow */
  .how-review-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    /* Removed these two lines: 
       box-shadow: 0 8px 20px rgba(0,0,0,0.1);
       background: #fff;
    */
    border-radius: 16px;
    padding: 40px 30px; 
    position: relative;
    overflow: hidden;
  }
  
  /* Optional decorative accent in the background */
  .how-review-wrapper::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.07;
    border-radius: 50%;
  }
  
  /* Section Title & Subtitle */
  .how-review-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .how-review-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  /* The “steps” area */
  .how-review-steps {
    text-align: left; 
  }
  
  /* The list of steps */
  .steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  /* Each step in the process */
  .step-item {
    display: flex;
    align-items: flex-start; 
    background: #fafafa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    transition: box-shadow 0.3s ease;
  }
  
  .step-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  /* The icons on each step */
  .step-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 14px;
    flex-shrink: 0; 
  }
  
  /* Step text next to the icon */
  .step-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
  }
  
  .step-text strong {
    color: #111;
    margin-right: 2px;
  }
  
  /* ========== GUIDES & TIPS SECTION ========== */

/* The outer container with a subtle gradient */
.guides-section {
    padding: 60px 20px;
    position: relative;
  }
  
  /* Centering wrapper, no white "card" background, just the gradient */
  .guides-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
  }
  
  /* Optional decorative circle, this time top-left for variety */
  .guides-wrapper::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.07;
    border-radius: 50%;
  }
  
  /* Section Title & Subtitle */
  .guides-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .guides-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  /* The container for the list of guides */
  .guide-list {
    display: flex;
    flex-wrap: wrap;   /* let them wrap if narrower than the container */
    gap: 20px;         /* spacing between each guide card */
    justify-content: center; /* center them horizontally */
    text-align: left;  /* revert to left text for each card content */
  }
  
  /* Each guide “card” */
  .guide-item {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    width: 300px;            /* fixed width or flex: 1 1 calc(33% - 40px); */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;           /* icon + text side by side on bigger screens */
    align-items: flex-start;
    gap: 14px;
  }
  
  .guide-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  
  /* The guide icon area */
  .guide-icon {
    flex-shrink: 0;  /* keep icon from shrinking */
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 6px; /* small vertical alignment adjustment */
  }
  
  /* The text area (title, p, and button) */
  .guide-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .guide-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .guide-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
  }
  
  /* Keep using your existing .play-btn style or define it here if needed */
  .play-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .play-btn:hover {
    background: #ff1f1f;
  }
  
  /* ========== RESPONSIVE ADJUSTMENTS ========== */
  @media (max-width: 768px) {
    .guide-list {
      justify-content: center;
    }
  
    .guide-item {
      width: 100%;
      max-width: 400px; /* a comfortable max, so it doesn't get too wide on tablets */
      margin: 0 auto;   /* center them on smaller screens */
      flex-direction: column; /* icon above text, if you prefer */
      align-items: center;
      text-align: center;
    }
  
    .guide-icon {
      margin-top: 0;
      font-size: 2.2rem;
    }
  }
  
  /* ========== TRUSTED PARTNERS SECTION ========== */

/* A gradient background similar to your other fancy sections */
.trusted-partners-section {
    padding: 60px 20px;
    position: relative;
  }
  
  .trusted-partners-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
  }
  
  /* Decorative circle accent, e.g., bottom-right corner this time */
  .trusted-partners-wrapper::before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.07;
    border-radius: 50%;
  }
  
  /* Title & Subtitle styling (similar to how-we-review, etc.) */
  .partners-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .partners-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  /* The container for partner cards */
  .partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  /* Each partner is a “card” */
  .partner-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    width: 240px;   /* or whatever width you prefer for your logos */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  
  /* The logo area */
  .partner-logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  /* The partner name / heading */
  .partner-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #444;
  }
  
  /* RESPONSIVE ADJUSTMENTS */
  @media (max-width: 768px) {
    .partner-card {
      width: 100%;
      max-width: 400px; /* so the card isn’t too wide on small screens */
      margin: 0 auto;
    }
  }
  
  /* styles.css */

/* Basic styling for the play block section */
.play-block {
  padding: 20px;
  background-color: #f4f4f4;
}

.play-block__bg {
  position: relative;
  background: #000;
  color: #fff;
}

.play-block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
}

.play-block__box-inner {
  position: relative;
  z-index: 1;
  padding: 20px;
  text-align: center;
}

/* Button styling */
.play-block__button,
.play-btn {
  display: inline-block;
  background-color: #ff4500;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  margin: 10px;
  cursor: pointer;
}

/* Fullscreen button styling */
.toggle-fullscreen-btn {
  margin-top: 10px;
}

/* Additional responsive styling as needed */
